home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / c_news / 10 / database / bplus11.not < prev    next >
Text File  |  1988-07-31  |  912b  |  22 lines

  1.                     Using BPLUS11 With Turbo C Version 1.5
  2.  
  3.         According to Larry Hunter of Hunter and Associates, the reason
  4.       BPLUS11 will not work with Turbo C Version 1.5 lies in the 
  5.       difference from Version 1.0 in definition of the library function, 
  6.       memcpy().  In Version, 1.5, memcpy() should not be used and 
  7.       function, memmove(), should be used, instead.
  8.  
  9.         I did a global search and replace in file, BPLUS.C, to replace
  10.       each instance of 'memcpy' with 'memmove' and recompiled.  The
  11.       calling parameters for both functions are identical, so no further
  12.       work needs to be done.  It works just fine, now.
  13.  
  14.         A new address is required to get in touch with Hunter and Assoc.
  15.       as follows:
  16.  
  17.                        Hunter and Associates
  18.                        7900 Edgewater Drive
  19.                        Wilsonville, Oregon 97070
  20.  
  21.  
  22.